Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
| 12345678910111213 |
- import type { FC } from 'react'
- import React from 'react'
-
- import type { IMainProps } from '@/app/components/share/chat'
- import Main from '@/app/components/share/chatbot'
-
- const Chatbot: FC<IMainProps> = () => {
- return (
- <Main />
- )
- }
-
- export default React.memo(Chatbot)
|